home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / Online / Term / Extras / Source / term-source.lha / Strings.c < prev    next >
C/C++ Source or Header  |  1996-10-20  |  440b  |  22 lines

  1. /*
  2. **    Strings.c
  3. **
  4. **    Declaration of builtin language strings
  5. **
  6. **    Copyright © 1990-1996 by Olaf `Olsen' Barthel
  7. **        All Rights Reserved
  8. */
  9.  
  10. #define CATCOMP_ARRAY
  11.  
  12. #if defined(__STORM__) || defined(__GNUC__)
  13. #define const
  14. #endif
  15.  
  16. #ifndef TERM_STRINGS_H
  17. #include "Strings.h"
  18. #endif    /* TERM_STRINGS_H */
  19.  
  20. struct CatCompArrayType    *AppStrings    = &CatCompArray[0];
  21. WORD             NumAppStrings    = sizeof(CatCompArray) / sizeof(struct CatCompArrayType);
  22.